home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / sal100.zip / BUBBLE.SRC next >
Text File  |  1993-05-27  |  176b  |  11 lines

  1. void bubble()
  2. {
  3.   int a;
  4.   int b;
  5.  
  6.   for(a=1; a < ARRAYSIZE; a++)
  7.     for(b=ARRAYSIZE-1, b >= a; b--)
  8.       if(Vektor[b-1] > Vektor[b])
  9.         SwapNumbers(b-1,b);
  10. }
  11.